home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 4
/
Aminet 4 - November 1994.iso
/
aminet
/
comm
/
term
/
vltj5867.lha
/
VLT
/
rexx
/
RunBBS.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1994-03-26
|
388b
|
26 lines
/** runbbs.rexx
*
* Script to run FifoBBS. You probably want to change this.
* This script relies on WShell.
*
**/
address COMMAND
/*
* Run VLT as a BBS program
*/
"run vlt:vlt +p VTPrefsBBS.dat"
/*
* Wait until VLT is up
*/
do i = 1 to 150
if ~showlist('p',"VLT") then call delay 25
else leave i
end
/*
* Now run the BBS program itself.
*/
"run FifoBBS remote"
exit(0)